home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Clickx 115
/
Clickx 115.iso
/
software
/
tools
/
windows
/
tails-i386-0.16.iso
/
live
/
filesystem.squashfs
/
usr
/
share
/
pyshared
/
pycountry
/
tests.py
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Python Source
|
2010-04-21
|
356 b
|
16 lines
# vim:fileencoding=utf-8
# Copyright (c) 2008 gocept gmbh & co. kg
# See also LICENSE.txt
# $Id$
"""Test harness for pycountry."""
import doctest
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTest(doctest.DocFileSuite('README.txt',
optionflags=doctest.ELLIPSIS))
return suite